abbrev <- tribble(
~`Colour space model`, ~Parameter, ~Abbreviation,
"RGB", "Red", "R",
"RGB", "Green", "G",
"RGB", "Blue", "B",
"CIE xyY", "Chromatic coordinate x", "x",
"CIE xyY", "Chromatic coordinate y", "y",
"CIE XYZ", "Brightness", "Y",
"CIE XYZ", "Virtual component X", "X",
"CIE xyY", "Virtual component Z", "Z",
"CIE LAB", "Metric lightness function", "L",
"CIE LAB", "Chromatic coordinate opponent red–green scales", "a*",
"CIE LAB", "Chromatic coordinate opponent blue–yellow scales", "b*",
"CIE LUV", "Chromatic coordinate opponent red–green scales", "u*",
"CIE LUV", "Chromatic coordinate opponent blue–yellow scales", "v*",
"CIE LCH", "CIE hue", "c*",
"CIE LCH", "CIE chroma", "h*",)